home *** CD-ROM | disk | FTP | other *** search
File List | 1988-11-11 | 5.8 KB | 237 lines |
- Rem ******* MOON CALENDAR ***********
- Rem
- Rem by Jeff Adkins
- Rem
- Rem Copyright 1988 Antic Publishing
- Rem
- Rem *********************************
- Dim Month(12),Ph(12,31),Phcx(12,31),Phcy(12,31)
- Dim Spalette%(16,3)
- Res%=Xbios(4)
- If Res%=0
- Alert 1,"Moon Calendar requires|medium or high resolution.",1,"Ok",D
- End
- Endif
- '
- Rem now get the blank picture.
- '
- Moon_child$="MOON.PI"+Str$(Res%+1)
- If Not Exist(Moon_child$)
- A$=Moon_child$+" must be in the same|directory as MOON.PRG."
- Alert 1,A$,1,"Abort",D
- End
- Endif
- '
- @Save_pal
- @Degas(Moon_child$)
- Sget Moon_pic$
- Finished!=False
- New_moon!=True
- Repeat
- '
- If New_moon!
- Gosub Titles ! asks for the current year
- Sput Moon_pic$
- Gosub Pasteyear ! Inserts current year
- Gosub January1 ! Initializes the starting point for the Phase Array
- Gosub Phasearray ! Calculates the phase for each day in the array
- Gosub Outlines ! Draws circles for each phase of the moon.
- Gosub Filler !Fills in the phases.
- New_moon!=False
- Endif
- Repeat
- Mouse Xclick,Yclick,K
- Until K<>0
- '
- Finished!=K=2
- '
- If Xclick>=37 And Yclick>=170*Res% And Xclick<=90 And Yclick<=184*Res%
- Finished!=True
- Endif
- '
- If Xclick>=544 And Yclick>=170*Res% And Xclick<=597 And Yclick<=184*Res%
- Gosub Papercopy ! Produces a hardcopy if requested.
- Endif
- '
- If Xclick>=297 And Yclick>=20*Res And Xclick<=392 And Yclick<=30*Res%
- New_moon!=True
- Endif
- '
- Until Finished!
- '
- @Restorepal
- End
- Procedure Titles
- Cls
- Print "MOON CALENDAR"
- Print "(V. 2.0)"
- Print "by Jeff Adkins"
- Print
- Askyear:
- Input "Please enter the year (>=1985):";Year
- If Year<1985 Then
- Print "The year must be greater than 1985."
- Goto Askyear
- Endif
- Cls
- Return
- Procedure January1
- Restore
- For I=1 To 12 ! read in normal year month lengths
- Read Length
- Month(I)=Length
- Next I
- Rem Change February for leap years
- If Year/4=Int(Year/4)
- Month(2)=29
- Endif
- If Year/400=Int(Year/400) !There is not a leap year for 2000 AD
- Month(2)=28
- Endif
- Data 31,28,31,30,31,30,31,31,30,31,30,31
- Rem On December 22, 1984, 12 minutes before midnight
- Rem Universal Time there was a New Moon. This was
- Rem 203.68 hours before midnight on December 31.
- Time=203.68
- Rem Add hours for each year beyond 1985
- Time=Time+(365.24*23.9344)*(Year-1985)
- Rem Add 20 hours to get to 10 pm
- Rem then subtract 5 hours since benchmark is universal time
- Rem and I am converting to eastern time.
- Rem central time
- Rem subtract 6 hours
- Rem mountain time
- Rem subtract 7 hours
- Rem pacific time
- Rem subtract 8 hours
- Rem daylight savings time
- Rem add 1 hour
- Time=Time+15
- Return
- Procedure Phasearray
- For Months=1 To 12
- For Days=1 To Month(Months)
- Cx=18*Days+42
- Cy=(9*Res%)*Months+(50*Res%)
- Rem now record the x and y coordinates in the array Phcx,phcy
- Phcx(Months,Days)=Cx
- Phcy(Months,Days)=Cy
- Rem Now divide by the number of hours in the time it takes the moon phase to repeat
- Phase=Time/(29.530588*23.9344)
- Phase=Phase-Int(Phase)
- Ph(Months,Days)=Phase
- Time=Time+23.9344
- Next Days
- Next Months
- Return
- Procedure Outlines
- For Months=1 To 12
- For Days=1 To Month(Months)
- Cx=Phcx(Months,Days)
- Cy=Phcy(Months,Days)
- Ellipse Cx,Cy,8.5,(4.25*Res%),0,3600
- Next Days
- Next Months
- Return
- Procedure Filler
- For Months=1 To 12
- For Days=1 To Month(Months)
- Phase=Ph(Months,Days)
- Cx=Phcx(Months,Days)
- Cy=Phcy(Months,Days)
- If Phase<=0.5
- Theta=Phase*6.283
- Else
- Theta=(Phase-0.5)*6.283
- Endif
- R=7.5
- For Y=-R To R
- Lx=-Sqr(R*R-(Y*Y))
- Rx=Abs(Lx)*Cos(Theta)
- If Phase>0.5
- Swap Rx,Lx
- Rx=-Rx
- Endif
- Line Lx+Cx,(Y/2)*Res%+Cy,Rx+Cx,Cy+(Y/2)*Res%
- ' Line Lx+Cx,Y+Cy,Rx+Cx,Cy+Y
- Next Y
- Next Days
- Next Months
- Return
- Procedure Dotplot
- Cx=Phcx(M,D)
- Cy=Phcy(M,D)
- Line Cx,Cy,Cx,Cy
- Color 1
- Return
- Procedure Papercopy
- '
- Alert 2,"Please ready printer| for hardcopy.",1,"Ok|Cancel",Pressed
- If Pressed=1
- Hidem
- Hardcopy
- Showm
- Endif
- Return
- Procedure Pasteyear
- Color 0
- Tester:
- Graphmode 2
- Deftext 1,0,0,16*Res%
- Text 510,35*Res%,Year
- Color 1
- Return
- Procedure Degas(Filename$)
- ' This assumes main program has done necessary error trapping.
- '
- ' This will work for pictures of any resolution, uncompressed format
- '
- ' To hold more than one picture in memory, dimension Colr$ to however many
- ' pictures you want, and hold pallete there and change procedure parameters
- ' to Degas(Filename$,Col) where Col is the subscript.
- '
- Open "I",#2,Filename$ ! Assume it exists
- Temp$=Input$(36,#2) !
- Colr$=Mid$(Temp$,3,36) ! Put pallette in Colr$
- Close #2 ! Close
- Void Xbios(6,L:Varptr(Colr$)) ! Set pallette
- Physbase=Xbios(2) ! Find screen
- Bload Filename$,Physbase-34
- Clr Temp$
- Return
- '
- ' ------------- SAVE ORIGINAL COLOR PALETTE -----------------------
- Procedure Save_pal
- '
- ' Requires Dim Spalette%(16,3)
- '
- For Z%=0 To 15
- Dpoke Contrl,26
- Dpoke Contrl+2,0
- Dpoke Contrl+6,2
- Dpoke Intin,Z%
- Dpoke Intin+2,0
- Vdisys
- Spalette%(Z%,0)=Dpeek(Intout+2)
- Spalette%(Z%,1)=Dpeek(Intout+4)
- Spalette%(Z%,2)=Dpeek(Intout+6)
- Next Z%
- Return
- '
- Procedure Restorepal
- ' --------------------- RESTORES PALLET -------------------
- ' Dimensions: Spalette%(16,3)
- '
- For Z%=0 To 15
- Dpoke Contrl,14
- Dpoke Contrl+2,0
- Dpoke Contrl+6,4
- Dpoke Intin,Z%
- Dpoke Intin+2,Spalette%(Z%,0)
- Dpoke Intin+4,Spalette%(Z%,1)
- Dpoke Intin+6,Spalette%(Z%,2)
- Vdisys
- Next Z%
- Return
- '
-